All Questions
Tagged with contentthe-content
37 questions
0votes
1answer
236views
How To Watermark Audio
Does anyone know a way or plugin that will help me to automatically watermark any audio uploaded in the wordpress media library
0votes
0answers
454views
Remove pre and code tags from WordPress
WordPress has added both <pre> and <code> tags to my PHP embedded in a post. Here's an example <pre><code>register_taxonomy( 'Books', 'post', array( 'label' => __(...
0votes
1answer
179views
What are the advantages/disadvantages of using jQuery DOM manipulation as opposed to PHP DOM manipulation?
I'm working on a plugin that takes $content for a post and alters some of the HTML. Seems there are two common ways to accomplish this in WordPress - using jQuery or using PHP's DOMDocument. I'm ...
0votes
0answers
340views
How to parse any content which was added after the working out filter 'the_content'
How to parse any content which was added after the working out filter 'the_content'? For example I have html structure of the simple page that i was created via Worpdress Admin Dashboard -> Pages -> ...
0votes
1answer
2kviews
Split the_content into two parts
I want to split the content of a post into two parts. The First part is in an <strong>-tag, it is like a excerpt and in the second part i want to display the rest of the content. But I don‘t ...
1vote
0answers
22views
Missing content in Pages only
I have an odd one. One site is missing all content on it's page (but not posts.) If I add a filter on 'the_content', $content is empty. I've tried giving the filter priority of 1, 0 and even ...
1vote
2answers
500views
Why content_arr['extended'] removes paragraph tags?
I am running into a strange issue where content_arr['extended'] or content_arr['main'] is removing the paragraph tags in the output. Any help, or insight into something i am over looking, trying to ...
1vote
2answers
2kviews
Remove Content Filter
I need help with removing the Content Filter from a Plugin: add_filter( 'the_content', array( &$this, 'addContentAds' ), 8 ); Do someone could help me please? Thank you and best regards
0votes
1answer
916views
How to turn each phone number within the $content to a telephone link?
I am working on a webpage that lists all the access numbers our customers ask for. What I am trying to do is turn all the text phone numbers into telephone links through a php function rather than ...
0votes
1answer
1kviews
the_content() Not Grabbing All Content
I'm having a weird issue where Wordpress is cutting off and not grabbing all of the content from pages or posts. Examples can be seen on the following pages: http://gripjunkies.com/about/ http://...
1vote
1answer
292views
How to make search and replace in content through php
I actually can show content and change content while displaying post. Problem is that I am using RSS importer and after importing I want to make search and replace and correct data imported because I ...
0votes
1answer
35views
The post content just showing up text
I am newbie in wordpress. I can't fixed it and I really wonder that. I get the content with "the_content()" function. But if I add the picture, just write the attr (alt) of image or when I use link, I ...
1vote
1answer
1kviews
How to have a "clean" post content, for excerpt and social networks sharing
Sometimes I start my blog posts by : This is a guest post.... This is a sponsored post.... [download]This is a download for the post[download] [youtube]this is a video that I put in the begenning[...
0votes
1answer
102views
How is WordPress changing the content markup?
In my post there is Visual and Text tabs. I've formatted some content and in the text tab it looks like this: <strong>The Mission Statement –</strong> The following is a mission ...
7votes
2answers
12kviews
Where to hook into post content?
Which hook or filter is used to edit the post content before the_content filter is applied to it. For instance, if I wanted to add Hello World, as the first text in every post.